Fix (VBScript)

The Fix command and the Int command both remove the fractional part of a numeric. The difference between these two functions is with the way negative numbers are dealt with.

Fix will convert -8.4 to -8, whereas Int will convert -8.4 to -9.

Syntax

FIX ( numeric_expression )